home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
machserver
/
1.098
/
dbg
/
ds3100.md
/
dbgAsm.s
< prev
next >
Wrap
Text File
|
1989-07-10
|
1KB
|
41 lines
/*
* dbgAsm.s --
*
* Contains misc. assembler routines for the PMAX.
*
* Copyright (C) 1989 Digital Equipment Corporation.
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby granted,
* provided that the above copyright notice appears in all copies.
* Digital Equipment Corporation makes no representations about the
* suitability of this software for any purpose. It is provided "as is"
* without express or implied warranty.
*
* $Header: /sprite/src/kernel/dbg/ds3100.md/dbgAsm.s,v 1.1 89/07/10 19:51:06 nelson Exp $ SPRITE (DECWRL)
*/
#include <regdef.h>
/*----------------------------------------------------------------------------
*
* Dbg_Call --
*
* Trap to the debugger.
*
* Results:
* None.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------------
*/
.globl Dbg_Call
.ent Dbg_Call, 0
Dbg_Call:
.frame sp, 0, ra
break 0
j ra
.end Dbg_Call